home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / include / qscrollbar.h.z / qscrollbar.h
C/C++ Source or Header  |  2002-04-08  |  5KB  |  188 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qscrollbar.h   3.0.3   edited Nov 9 20:53 $
  3. **
  4. ** Definition of QScrollBar class
  5. **
  6. ** Created : 940427
  7. **
  8. ** Copyright (C) 1992-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the widgets module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
  22. ** licenses may use this file in accordance with the Qt Commercial License
  23. ** Agreement provided with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QSCROLLBAR_H
  39. #define QSCROLLBAR_H
  40.  
  41. class QTimer;
  42.  
  43. #ifndef QT_H
  44. #include "qwidget.h"
  45. #include "qrangecontrol.h"
  46. #endif // QT_H
  47.  
  48. #ifndef QT_NO_SCROLLBAR
  49.  
  50.  
  51. class Q_EXPORT QScrollBar : public QWidget, public QRangeControl
  52. {
  53.     Q_OBJECT
  54.     Q_PROPERTY( int minValue READ minValue WRITE setMinValue )
  55.     Q_PROPERTY( int maxValue READ maxValue WRITE setMaxValue )
  56.     Q_PROPERTY( int lineStep READ lineStep WRITE setLineStep )
  57.     Q_PROPERTY( int pageStep READ pageStep WRITE setPageStep )
  58.     Q_PROPERTY( int value READ value WRITE setValue )
  59.     Q_PROPERTY( bool tracking READ tracking WRITE setTracking )
  60.     Q_PROPERTY( bool draggingSlider READ draggingSlider )
  61.     Q_PROPERTY( Orientation orientation READ orientation WRITE setOrientation )
  62.  
  63. public:
  64.     QScrollBar( QWidget *parent, const char* name=0 );
  65.     QScrollBar( Orientation, QWidget *parent, const char* name=0 );
  66.     QScrollBar( int minValue, int maxValue, int LineStep, int PageStep,
  67.         int value, Orientation,
  68.         QWidget *parent, const char* name=0 );
  69.  
  70.     virtual void setOrientation( Orientation );
  71.     Orientation orientation() const;
  72.     virtual void setTracking( bool enable );
  73.     bool    tracking() const;
  74.     bool    draggingSlider() const;
  75.  
  76.     virtual void setPalette( const QPalette & );
  77.     QSize    sizeHint() const;
  78.  
  79.     int     minValue() const;
  80.     int     maxValue() const;
  81.     void setMinValue( int );
  82.     void setMaxValue( int );
  83.     int     lineStep() const;
  84.     int     pageStep() const;
  85.     void setLineStep( int );
  86.     void setPageStep( int );
  87.     int  value() const;
  88.  
  89.     int        sliderStart() const;
  90.     QRect    sliderRect() const;
  91.  
  92. public slots:
  93.     void setValue( int );
  94.  
  95. signals:
  96.     void    valueChanged( int value );
  97.     void    sliderPressed();
  98.     void    sliderMoved( int value );
  99.     void    sliderReleased();
  100.     void    nextLine();
  101.     void    prevLine();
  102.     void    nextPage();
  103.     void    prevPage();
  104.  
  105. protected:
  106. #ifndef QT_NO_WHEELEVENT
  107.     void     wheelEvent( QWheelEvent * );
  108. #endif
  109.     void    keyPressEvent( QKeyEvent * );
  110.     void    resizeEvent( QResizeEvent * );
  111.     void    paintEvent( QPaintEvent * );
  112.  
  113.     void    mousePressEvent( QMouseEvent * );
  114.     void    mouseReleaseEvent( QMouseEvent * );
  115.     void    mouseMoveEvent( QMouseEvent * );
  116.     void        contextMenuEvent( QContextMenuEvent * );
  117.  
  118.     void    valueChange();
  119.     void    stepChange();
  120.     void    rangeChange();
  121.  
  122.     void    styleChange( QStyle& );
  123.  
  124. private slots:
  125.     void doAutoRepeat();
  126.  
  127. private:
  128.     void init();
  129.     void positionSliderFromValue();
  130.     int calculateValueFromSlider() const;
  131.  
  132.     void startAutoRepeat();
  133.     void stopAutoRepeat();
  134.  
  135.     int rangeValueToSliderPos( int val ) const;
  136.     int sliderPosToRangeValue( int  val ) const;
  137.  
  138.     void action( int control );
  139.  
  140.     void drawControls( uint controls, uint activeControl ) const;
  141.     void drawControls( uint controls, uint activeControl,
  142.                 QPainter *p ) const;
  143.  
  144.     uint pressedControl;
  145.     bool track;
  146.     bool clickedAt;
  147.     Orientation orient;
  148.  
  149.     int slidePrevVal;
  150.     QCOORD sliderPos;
  151.     QCOORD clickOffset;
  152.  
  153.     QTimer * repeater;
  154.     void * d;
  155.  
  156. private:    // Disabled copy constructor and operator=
  157. #if defined(Q_DISABLE_COPY)
  158.     QScrollBar( const QScrollBar & );
  159.     QScrollBar &operator=( const QScrollBar & );
  160. #endif
  161. };
  162.  
  163.  
  164. inline void QScrollBar::setTracking( bool t )
  165. {
  166.     track = t;
  167. }
  168.  
  169. inline bool QScrollBar::tracking() const
  170. {
  171.     return track;
  172. }
  173.  
  174. inline QScrollBar::Orientation QScrollBar::orientation() const
  175. {
  176.     return orient;
  177. }
  178.  
  179. inline int QScrollBar::sliderStart() const
  180. {
  181.     return sliderPos;
  182. }
  183.  
  184.  
  185. #endif // QT_NO_SCROLLBAR
  186.  
  187. #endif // QSCROLLBAR_H
  188.